home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / forth / pfe-0.000 / pfe-0 / pfe-0.9.13 / src / config / AIX3 / options.mk
Encoding:
Text File  |  1995-05-08  |  696 b   |  37 lines

  1. #
  2. # AIX3/options.mk ---    Part of Makefile for PFE, compiler options for AIX 3.x
  3. #
  4.  
  5. # You can use gcc or the IBM xlc compiler.
  6. # The IBM compiler has problems with function pointers sometimes. The critical
  7. # sections are #ifdef'd in the source. These workarounds cause some harmless
  8. # warnings.
  9. # No problem with gcc which is faster anyway due to the global register
  10. # variables.
  11.  
  12. PREFIX    = /usr/local
  13. PFELIB    = $(PREFIX)/lib/pfe
  14. PFEHLP    = $(PFELIB)/help
  15.  
  16. SYSTEM    = AIX3
  17.  
  18. CC    = gcc -pipe -Wall
  19. OPTIM    = -O2 -fomit-frame-pointer -DUSE_REGS
  20. DEBUG    = -g -O
  21.  
  22. #CC    = cc
  23. #OPTIM    = -O3
  24. #DEBUG    = -g
  25.  
  26. CL    = $(CC)
  27. CPP    = $(CC) -E
  28.  
  29. OPTIONS    =
  30. STRIP    = -s
  31. TERM_O    = termunix$o
  32. SYS_O    = unix$o
  33. LFLAGS    = 
  34. LIBS    = -lcurses -lm
  35.  
  36.  
  37.